When I use EPDM's API to get a file's reference tree like the following code:
Dim pos As IEdmPos5 pos = file.GetFirstChildPosition(projName, isTop, True, 0) Dim ref As IEdmReference6While Not pos.IsNull ref = file.GetNextChild(pos) End while
I found the sequence of the child is diffrent from the sequence in the Solidworks, But I want to have the same sequence ,how can I get it?
Thanks!