Tag: Tekla Open API
-
How to Get Tekla Model Objects if selected by Users (Tekla API)
A user has pre-selected a set of model objects. We need to retrieve them via the API. How do we do it? All of our code is extracted from our production apps.
-
Tekla API – how to select model objects via a picker
Pretty simple: just selects a simple model object
-
Exploring a New Approach to Copying Objects in Tekla
copy to another Object in Tekla Normally in Tekla, if we want to copy objects or components from one object to another, we have to follow these steps : Select the objects and components you want to copy. Execute the “Copy to Another Object” command. Choose the source object. Select the destination…
-
Tek1 – Tekla Tools
Dimension Bolts Set up Instructions Instructions: Trouble shooting: it doesn’t work!
-
How to programmatically create bolt list reports from selected model objects (Tekla Open API)
Reports can be generated fairly easily, manually. But how do you do it programmatically using the Tekla Open API? Please see below for a code sample: Programmatically Extracting Report Values Now, if you want to generate the values programmatically, in memory, and then process them somehow into an excel output, consider the following code sample…
-
How to Create a Curved Beam using the Tekla Open API (c#)
The key to this is to specify a chamfer value, and at least three points using the PolyBeam class. You must also provide a profile type that Tekla understands – otherwise you’ll get a bunch of straight lines. Here’s some basic code to get you started: You should be able to easily import, into Tekla,…
-
Modelling Complex Contour Plates using the Tekla Open API
How to create custom Contour Plates using the Tekla Open API from Tek1 on Vimeo. Manually creating contour plates from CSV file inputs will likely be disastrous. You’ll inevitably make mistakes and things won’t fit on site: it will be an uphill battle. You can obviate these issues by using the Tekla Open API to…
-
Write Selected Beam Members to an Excel File (Tekla Open API – Tutorial)
What is the task at hand? The user selects some beams. We then want to collate the following information into various Excel spreadsheets: Name Profile Length and finally Weight We want two views: the first aggregates the beams by their name and finish, and the second merely lists all the beams selected with the information…