Share via

How to toggle content control boundaries (tags) from appearing on screen or in printed documents? Word for the Mac.

Anonymous
2023-04-25T16:31:10+00:00

How can the graphic boundaries of content controls be toggled on/off to appear/disappear when editing a document in Word or when printing documents.

I need the value of the content control to remain visible/printable, but when editing/proofreading a complicated document, I need to be able to make the purple graphic boundaries (the left one showing the name of the field, the right one being a bracket) go away, while preserving the value itself.

This is what the screen looks like when editing a document (notice the purple graphic boundaries of the content control)

I want the ability to toggle the purple part on/off so the screen looks like this instead (I mocked up this screen manually by creating a new document):

The ability to toggle the purple boundaries of multiple content controls on/off make the document much easier to proofread, noting that the value of the content control (in this example $800.00) remains visible.

It does not work to format the content control as hidden text because then the value itself also disappears, which does not meet the business requirement.

Microsoft 365 and Office | Word | For business | MacOS

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

4 answers

Sort by: Most helpful
  1. Anonymous
    2023-04-26T09:34:44+00:00

    Dear Chris,

    Good day!!

    I understand you would like to turn off/on the purple graphic boundaries to the edges of the content control and to my knowledge, the purple graphic boundaries can be turned off by disabling the Design Mode in the Developer, but I am sorry to convey that Word app on the Mac doesn’t have the Design Mode to be turned off.

    In this scenario on using the Legacy Forms in the Word document on Mac, I suggest you to refer the replies shared by MVP’s in this thread: https://answers.microsoft.com/en-us/msoffice/forum/all/microsoft-word-for-mac-forms-getting-into-and-out/4bdb10ba-c4b6-4278-883b-3e5f3fdcc038 

    Moreover, I also suggest you add your valuable feedback in the Word Feedback Community: https://feedbackportal.microsoft.com/feedback/forum/fb6d67e3-301c-ec11-b6e7-0022481f8472 

    Sorry for the inconvenience caused and thanks for your patience.

    Have a good day!!

    Best Regards,

    Sophia

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  3. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  4. Charles Kenyon 167.1K Reputation points Volunteer Moderator
    2023-04-26T13:41:47+00:00

    Your first screen shot shows the Content Control set to display start and end tags.

    This is easily fixed under the Developer Tab in properties in the Windows version of Word.

    I know of no way to adjust this on a Mac using the user interface. The controls are not there.

    It is possible to do with vba.

    Content Controls for macOS by John Korchok

    The following macro will give what is called a Bounding Box which will display the title when the control is selected and otherwise not.

    Sub ContentControlNoTags()
    
        ' Charles Kenyon 2023-04-26
    
        ' https://answers.microsoft.com/en-us/msoffice/forum/all/how-to-toggle-content-control-boundaries-from/6cfdc987-a663-4577-8a14-238dfac217bc
    
        '
    
        Dim iCount As Long
    
        With ActiveDocument
    
            For iCount = 1 To .ContentControls.Count
    
                .ContentControls(iCount).Appearance = wdContentControlBoundingBox
    
            Next iCount
    
        End With
    
    End Sub
    

    If you change wdContentControlBoundingBox to 2, nothing will display except what is in the Content Control, that is, it will not show the title even when selected. https://learn.microsoft.com/en-us/office/vba/api/word.wdcontentcontrolappearance

    The following macro toggles the tags. It could be attached to a keyboard shortcut stored in your template with the macro.

    Sub ContentControlTagsToggle()
    
        ' Charles Kenyon 2023-04-26
    
        ' https://answers.microsoft.com/en-us/msoffice/forum/all/how-to-toggle-content-control-boundaries-from/6cfdc987-a663-4577-8a14-238dfac217bc
    
        '
    
        ' Toggles tags on Content Controls
    
        '
    
        Dim iCount As Long
    
        With ActiveDocument
    
            For iCount = 1 To .ContentControls.Count
    
                If .ContentControls(iCount).Appearance = wdContentControlTags Then
    
                    .ContentControls(iCount).Appearance = wdContentControlHidden
    
                    Else: .ContentControls(iCount).Appearance = wdContentControlTags
    
                End If
    
            Next iCount
    
        End With
    
    End Sub
    

    Again, I think you are better off just changing it permanently to the Bounding Box.

    You do NOT want to switch to legacy form fields. This puts extreme limits on what people can do with the document, including spell checking.

    Was this answer helpful?

    0 comments No comments