Autodesk Robot Structural Analysis
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Elastic Foundation with API VBA
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
192 Views, 3 Replies
11-29-2011 07:29 AM
Hi,
I would like to create an elastic foundation on a element with Robot API in VB.
Have a look to the video please.
Can you give me the code ?
Solved! Go to Solution.
Re: Elastic Foundation with API VBA
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-29-2011 07:48 AM in reply to:
mateaus
Dim ElasticGroundLabel As RobotLabel
Dim ElaData As RobotBarElasticGroundData
Set ElasticGroundLabel = Robapp.Project.Structure.Labels.Create(I_LT_BAR_EL
Set ElaData = ElasticGroundLabel.Data
ElaData.KZ = 10000
Robapp.Project.Structure.Labels.Store ElasticGroundLabel

Rafal Gaweda
Product Support
Autodesk, Inc.
Re: Elastic Foundation with API VBA
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-30-2011 02:55 AM in reply to:
RG_Adsk
Ok how can I apply to a element ? for example number 4.
Re: Elastic Foundation with API VBA
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-30-2011 05:17 AM in reply to:
mateaus
Dim Bar As RobotBar
Set Bar = RobApp.Project.Structure.Bars.Get(4)
Bar.SetLabel I_LT_BAR_ELASTIC_GROUND, "my_ground"

Rafal Gaweda
Product Support
Autodesk, Inc.
