get the column of a paragraph in multicolumn textframes
Hi, I would like to know how to get the current column of a paragraph in a multicolumn textframe.
Given a story myStory formed by several multicolumn textFrames along multiple pages, I can access to its textFrames, columns of the textFrames, and paragraphs and words and lines,... in that order with codes like
var myParagraph = myStory.paragraphs[a];
var myColumn = myStory.parentTextFrames[myframe].textColumns[myColumnIndex];
But I dont know in which sub column is a known paragraph or line. I wonder if exists some method or property to get it as the parent, parentTextFrame or parentStory exist for other objects. In my work I want to know if a paragraph is shared between two or more sub columns.
Thanks in advance.