I want to format the current selection of paragraphs. I can format a specific paragraph:

Application.ActiveWindow.Selection.ShapeRange.TextFrame2.TextRange.Paragraphs(1).ParagraphFormat.IndentLevel = 6
and i can format all paragraphs in the textframe

Application.ActiveWindow.Selection.ShapeRange.TextFrame2.TextRange.Paragraphs.ParagraphFormat.IndentLevel = 6
but not just those selected.