Property the reports the full outline level?

R

Rich

Can someone tell me the property the reports the full
outline level for the current selection?

There is the .OutlineLevel property, but that only
returns the top level of the Outline.

For example, say my current selection is at outline
level "2.1.7", the .OutlineLevel property only
returns "2". I need the full Outline level data,
e.g. "2.1.7".
 
K

Klaus Linke

Rich said:
Can someone tell me the property the reports the
full outline level for the current selection?

There is the .OutlineLevel property, but that only
returns the top level of the Outline.

For example, say my current selection is at outline
level "2.1.7", the .OutlineLevel property only
returns "2". I need the full Outline level data,
e.g. "2.1.7".


Hi Rich,

Try .ListString:
MsgBox Selection.Range.ListFormat.ListString

Regards,
Klaus
 
Top