View Single Post
 
Old 03-13-2022, 10:57 PM
Scaffold Scaffold is offline Windows 10 Office 2016
Advanced Beginner
 
Join Date: Oct 2009
Location: Moscow, Russia
Posts: 36
Scaffold is on a distinguished road
Default

Quote:
Originally Posted by Guessed View Post
I'll assume the textframe in question is the one you already have selected.
Code:
Sub Demo()
  Dim aRng As Object
  Selection.ShapeRange(1).TextFrame.TextRange.Select
  Set aRng = Selection.Range
  aRng.MoveStart Unit:=wdCharacter, Count:=1
  aRng.Select
End Sub
Thank you! It looks like the solution I need. I will test it asap.
Reply With Quote