IS IT POSSIBLE TO AUTOMATE THE SELECTION PROCESS
Hi Everyone,
Dim selections As IpfcSelections
Dim selectionOptions As IpfcSelectionOptions
selectionOptions = (New CCpfcSelectionOptions).Create("dtl_symbol")
selectionOptions.MaxNumSels = 1
selections = session.Select(selectionOptions, Nothing)
Here what i am trying to do is after the selection of one SYMBOL. is it possible to loop the selection process so that all same type SYMBOLshould be selected from the current sheet.
i tried to pass the selected SYMBOL to "IpfcDetailItems". But is it possible to loop this so that i can get hold of all symbols by selecting one symbol. I tried using For loop but it didn't worked well.
Please tell me a method to select similar kind of symbols from a drawing template.
With Regards
Aghil.M

