Traverse to find Link

vcHelpers.Selection is very useful, search vcHelpers.Selection in help document.

from vcScript import * 
from vcHelpers.Selection import * 
 
childNodes = getGivenComponentsNodes(getComponent())
print [childNode.Name for childNode in childNodes]
1 Like