How to get Coordinates from Block A to Block B using python script in Block B

Found this post about PositionMatrix and it solved my problem.

BlockA=app.findComponent(‘BlockA’)
BlockAPosition=BlockA.PositionMatrix
BlockAX=BlockAPosition.P.X
print(BlockAX)

if someone could tell me what the P stands for?