Selected Plane Name and Path

Is it possible to get the selected Plane's path, regardlessof Assembly/Sub-Assembly location, like how you get theComponent.Name2 path off a Part? If so how would you do this? I'mtrying to select a Plane from either the top level Assembly or froma Sub-Assembly and assign it to an object that I Select or Getlater to activate. Trying to do something like this. I think I'mgoing down the wrong path myself ... LOL

Dim swComp As SldWorks.Component2
Dim ItemPlane As Variant
dim ItemPlaneNameSplit As Variant

' Plane already selected
Set ItemPlane = swSelMgr.GetSelectedObject6(1, -1)
Set swComp = ItemPlane

' Get ItemPlane name and location
ItemPlaneNameSplit = Split(swComp.Name2, "/")
SolidworksApi macros