PDA

View Full Version : Solved: Const wdDialogFormatColumns Arguments



MacroShadow
04-18-2012, 02:42 AM
Hello all Experts,

What is meaning of the different wdDialogFormatColumns arguments, on msdn (http://msdn.microsoft.com/en-us/library/bb208812%28v=office.12%29.aspx) I found a list of the arguments, namely: Columns, ColumnNo, ColumnWidth, ColumnSpacing, EvenlySpaced, ApplyColsTo, ColLine, StartNewCol, FlowColumnsRtl. Now I find some of them to be self explanatory (ColumnNo, ColumnWidth, ColumnSpacing, EvenlySpaced) while the others I don't understand. I googled around a bit but couldn't find any explanations. Can somebody please explain them, or at least point me to an explanation.

All help will be most appreciated.

Thanks in advance

Tinbendr
04-18-2012, 09:46 AM
look at the dialog itself.

I think you'll figure it out.

Sub test()
With Dialogs(wdDialogFormatColumns)
.Show
End With
End Sub

MacroShadow
04-18-2012, 10:37 AM
Thanks I see your point and yet I still don't understand some of them.
1. Whats the difference between Columns & ColumnNo?
2. What is ColLine and StartNewCol?

Tinbendr
04-18-2012, 07:29 PM
Columnsis the total count of columns.
ColumnNo is what column the selection is in.
ColLine is the vertical line in between columns.
StartNewCol - I think this will start a column in a column. I'm not sure how to use it.

MacroShadow
04-18-2012, 09:59 PM
thanks.