Message 1 of 1
Change parameters using inventor apprentice server

Not applicable
08-01-2013
05:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can we change the parameters value of an ipt using inventor apprentice server?
I use the Inventor api for changing the parameters value,My code like
Dim oPartDoc As PartDocument = inventorApp.ActiveDocument Dim oParameters As Parameters oParameters = oPartDoc.ComponentDefinition.Parameters() Dim oLengthParam As Parameter oLengthParam = oParameters.Item("d0") oLengthParam.Expression = TextBox1.Text
as the same way can we change using inventor apprentice server? anyone know??