Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 07-01-2018, 01:59 AM
slaycock slaycock is offline what are the rules for how to anchor a shape? Windows 7 64bit what are the rules for how to anchor a shape? Office 2016
Expert
 
Join Date: Sep 2013
Posts: 255
slaycock is on a distinguished road
Default

Ah. That explains it.

The following vba code works

Code:
Sub shape_test()
Dim shape As shape
Dim i As Long
For i = 1 To 3
      
         Selection.Text = "New Page " & i
         Selection.Collapse Direction:=wdCollapseEnd
         
         ' the shapes get anchored to this paragraph below, not to the text above. Why?
         ' If I take out the paragraph, all 3 sets of shapes stack on each other,
         ' on the very last page of the set. Why?
         Selection.InsertParagraph
         Set shape = ActiveDocument.Shapes.AddShape(msoShapeRectangle, 100, 100, 300, 300)
         
         ' don't generate a new page after the last page of the series
        ' If (i < npages) Then
        Selection.Collapse Direction:=wdCollapseEnd
            Selection.InsertBreak Type:=wdPageBreak
        ' End If
     ' End If
    Next
End Sub
If you step through this code you can see the following in the word document

1. New Page 1 is inserted and highlighted as the selection range
2. Following the collapse the insertion point is on the left hand side of the paragraph marker.
3. Inserting a paragraph marker puts it on the left hand side of the existing paragraph marker and highlights the inserted paragraph marker as the selected range (as per MS help on .insertParagraph)
4. Inserting the shape puts the anchor at the start of the paragraph 'New Page 1'. The selection range is now the inserted shape.
5. The range is again collapsed so that it does not encompass the inserted shape
6. The insert break works fine and the whole process above is repeated for the next page.

I hope this makes things clearer.
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Word2010 Text Anchor - How To Do It? bluenite Word 3 05-07-2018 05:04 AM
How to change size / shape of a shape in a stencil tomgoodell Visio 1 06-30-2016 04:40 AM
what are the rules for how to anchor a shape? anchor addtextbox to new page Deltaj Word VBA 1 12-05-2014 01:56 AM
Text boxes don't anchor properly in PPT '08 noni PowerPoint 0 11-13-2011 09:16 AM
Question about Tools>Rules and Alerts>E-mail Rules RichGuard Outlook 0 09-02-2010 05:19 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 10:43 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft