THis is waht I am doing to copy and paste bodies
Selection1 = Call obj1.SelectElement3(Array("HybridBody", "Body"), "SELECT BODIES & GEO SETS ", False, 2, True)
‘then I select more than 2 (say for example i.Body1 ii. Body2 )
selection1.Copy
‘when I paste
Call selection1.PasteSpecial("CATPrtResultWithOutLink") ‘ all bodies gets pasted at a time
‘WHAT I AM LOOKING DO IS THAT WHEN I PASTE
‘first i) Body1 to get pasted…….. ( Can I use some thing like Selection1.item(1) to get pasted)
‘After some operations
‘ii) Body2 to get pasted
How can I split items from array selected elements and paste when ever I require one ?
Selection1 = Call obj1.SelectElement3(Array("HybridBody", "Body"), "SELECT BODIES & GEO SETS ", False, 2, True)
‘then I select more than 2 (say for example i.Body1 ii. Body2 )
selection1.Copy
‘when I paste
Call selection1.PasteSpecial("CATPrtResultWithOutLink") ‘ all bodies gets pasted at a time
‘WHAT I AM LOOKING DO IS THAT WHEN I PASTE
‘first i) Body1 to get pasted…….. ( Can I use some thing like Selection1.item(1) to get pasted)
‘After some operations
‘ii) Body2 to get pasted
How can I split items from array selected elements and paste when ever I require one ?