Showing 1-15 of 379 results for api (0.62 seconds)
-
Dialog elements OPEN GL graphic window Applies the OPEN GL API ® graphics presentation standard to the structure.
-
Settings of COM interface Select this option if you want to allow external applications to use the Autodesk Robot Structural Analysis Professional API , in order to run calculations in the cloud.
-
Note: It is not required to have programing skills or knowledge of Autodesk Robot Structural Analysis API to extract data for use in spreadsheets.
-
And then, I want to get one of these groups through the following API , but it needs the index of the group.
-
Hello, I wrote a vba macro, with IRJointKnee. The length parameter is not working properly.
-
Hello, Some one can help me please with documents to c# API for RSA. Thank you very much, that hekofull Hi @bechir_hammadi refer to the “Getting Started Guide Robot API .pdf” in the SDK directory on page 31 for the code in C# instead of FinalReleaseComObject:while (Marshal.ReleaseComObject(rsaApp) !
-
How can I create a bar eccentrity and apply it to a bar with ROBOT API using VBa? (here is the eccentricty I'm talking about) Hi @Anonymous Sub Create_And_Apply_Offset() Dim RobApp As IRobotApplication Set RobApp = New RobotApplication Dim Structure As RobotStructure Set Structure = RobApp.Project.Structure '// Create Offset Dim OffsetName As String Dim RLabelServer As RobotLabelServer Dim RLabel As RobotLabel Dim OffsetData As RobotBarOffsetData Dim EndOffset As RobotBarEndOffsetData OffsetName = "X1/Y2" Set RLabelServer = Structure.Labels Set RLabel = RLabelServer.Create(IRobotLabelType.I_LT_BAR_OFFSET, OffsetName) Set OffsetData = RLabel.Data Set EndOffset = OffsetData.Start EndOffset.UX = 0.01 ' < 1 cm in meters Set EndOffset = OffsetData.End EndOffset.UY = 0.02 RLabelServer.Store RLabel '// Get Beams from a RobotSelection to apply offset Dim SelBar As RobotSelection Set SelBar = Structure.Selections.Get(IRobotObjectType.I_OT_BAR) Dim Rbars As RobotBarCollection Set Rbars = Structure.Bars.GetMany(SelBar) Dim Bar As IRobotBar For i = 1 To SelBar.Count Set Bar = Rbars.Get(i) Bar.SetOffset OffsetName, True '< True if ReversedOffset Next i Set RobApp = Nothing End Sub See also : Best regards Stéphane Hi @Anonymous Sub Create_And_Apply_Offset() Dim RobApp As IRobotApplication Set RobApp = New RobotApplication Dim Structure As RobotStructure Set Structure = RobApp.Project.Structure '// Create Offset Dim OffsetName As String Dim RLabelServer As RobotLabelServer Dim RLabel As RobotLabel Dim OffsetData As RobotBarOffsetData Dim EndOffset As RobotBarEndOffsetData OffsetName = "X1/Y2" Set RLabelServer = Structure.Labels Set RLabel = RLabelServer.Create(IRobotLabelType.I_LT_BAR_OFFSET, OffsetName) Set OffsetData = RLabel.Data Set EndOffset = OffsetData.Start EndOffset.UX = 0.01 ' < 1 cm in meters Set EndOffset = OffsetData.End EndOffset.UY = 0.02 RLabelServer.Store RLabel '// Get Beams from a RobotSelection to apply offset Dim SelBar As RobotSelection Set SelBar = Structure.Selections.Get(IRobotObjectType.I_OT_BAR) Dim Rbars As RobotBarCollection Set Rbars = Structure.Bars.GetMany(SelBar) Dim Bar As IRobotBar For i = 1 To SelBar.Count Set Bar = Rbars.Get(i) Bar.SetOffset OffsetName, True '< True if ReversedOffset Next i Set RobApp = Nothing End Sub See also : Best regards Stéphane
-
How do i add nodes and element tables to the report with the API ? My code for creating a view and screenshot it: The "AddScToReport" doesn't work for me RobotViewScreenCaptureParams ScPar; ScPar = robApp.CmpntFactory.Create(IRobotComponentType.I_CT_VIEW_SCREEN_CAPTURE_PARAMS); ScPar.UpdateType = IRobotViewScreenCaptureUpdateType.I_SCUT_UPDATED_UPON_PRINTING; IRobotView3 robotView = (IRobotView3)robApp.Project.ViewMngr.CreateView(IRobotViewType.I_VT_STANDARD); RobotGeoPoint3D point1 = (RobotGeoPoint3D)robApp.CmpntFactory.Create(IRobotComponentType.I_CT_GEO_POINT_3D); RobotGeoPoint3D point2 = (RobotGeoPoint3D)robApp.CmpntFactory.Create(IRobotComponentType.I_CT_GEO_POINT_3D); RobotGeoPoint3D point3 = (RobotGeoPoint3D)robApp.CmpntFactory.Create(IRobotComponentType.I_CT_GEO_POINT_3D); point1.Set(22.5, 0, 0); point2.Set(29.5, 0, 0); point3.Set(22.5, 0, 6.7); robotView.SetLocal(point1, point2, point3); robotView.Selection.Get(IRobotObjectType.I_OT_CASE).FromText("5"); robotView.ParamsDiagram.Set(IRobotViewDiagramResultType.I_VDRT_NTM_MY, true); robotView.ParamsDiagram.Descriptions = IRobotViewDiagramDescriptionType.I_VDDT_TEXT; robotView.ParamsDiagram.PositiveNegative = IRobotViewDiagramSignDifferType.I_VDSDT_DIFFERENTIATED; robotView.ParamsDiagram.Filling = IRobotViewDiagramFillingType.I_VDFT_FILLED; robotView.ParamsDiagram.Values = IRobotViewDiagramValueType.I_VDVT_LOCAL_EXTREMES; robotView.Redraw(1); ScPar.Name = "Moment"; robotView.MakeScreenCapture(ScPar); robApp.Project.ViewMngr.Refresh(); robApp.Project.PrintEngine.AddScToReport(ScPar.Name); //<-------------------- This does not work I managed to create and add a table to the report. didn't know i had to use a prebuild table CreateTable(IRobotTableType.I_TT_BARS, IRobotTableDataType.I_TDT_BAR) I was using the ScreenCaptures.Remove but i located why i didn't think i was clearing the screenshots robApp.Project.PrintEngine.ScreenCaptures.Remove("Moment"); <--- only works once It removes the screenshot one time, but if I run my function again, it doesn't remove the screenshot and i'm asked to overwrite it again.
-
Are there changes to the API between versions which might be causing the issue?
-
I created Cables. I assigned MaterialName , SectionAX. 1) I don't know how to assign data from cable to created bar 2) How to set AssemblingParameters to dataCable IRobotBarCableAssemblingParamType.
-
Bien à vous, Julien hi @ext_julien_lebertMYQZ9 Here is an example of API extrusion showing the modification, you can try the filled mode Best Regards hi @ext_julien_lebertMYQZ9 Here is an example of API extrusion showing the modification, you can try the filled mode Best Regards
-
Hi, I have an error with an error with this code, under RSA 2025.
-
Hi Is it possible to extract the envelope values of a bar, given a set of combinations (for instance, manual combinations, like 10to15)?.
-
hi , im new to using the api , and so far im meeting a huge issue with trying to create dimensionning families and i cant seem to find a solution for it .
-
When Robot has an execution problem while computing, the system stops running. Is there an API to get a message of this error?
- 1
- 2
- 3
- 4
- 5
- …
- 26
-