Answered
How to get the current layout column spacing width? and the column spacing width of the textFrme?
Use script,
How to get the current layout column spacing width?
and the column spacing width of the text box?

Use script,
How to get the current layout column spacing width?
and the column spacing width of the text box?

//marginPreferences columnsPositions returns an array of column positions:
var ca = app.activeDocument.pages[0].marginPreferences.columnsPositions;
alert("Column Array:\r" + ca)
alert("Column 1 width: " + (ca[1]+ca[2]))
alert("Column Gutter: " + (ca[2]-ca[1]))Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.