Microsoft KB Archive/209216

From BetaArchive Wiki
Knowledge Base


WD2000: Sample Macro to Place a Border on a Single Cell in a Table

Article ID: 209216

Article Last Modified on 10/11/2006



APPLIES TO

  • Microsoft Word 2000 Standard Edition



This article was previously published under Q209216


SUMMARY

This article describes how to place a border around a single cell in a table using a Microsoft Visual Basic for Applications macro.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
For more information about how to use the sample code in this article, click the article number below to view the article in the Microsoft Knowledge Base:

212536 OFF2000: How to Run Sample Code from Knowledge Base Articles


The following sample macro applies a border to the table cell that contains the insertion point. If the insertion point is not in a table, a message box stating "Insertion point is not in a Word table" is returned.

Sub BorderCell()

   ' Set the Border style and width.
   With Options

      ' Set the line style.
      .DefaultBorderLineStyle = wdLineStyleThinThickLargeGap
      ' Set the line thickness.
      .DefaultBorderLineWidth = wdLineWidth150pt

   End With

   If Selection.Information(wdWithInTable) Then
    
      ' Select and apply border to table cell.
      With Selection
        
         ' Selects only the cell containing the insertion point.
         .GoTo what:=wdGoToBookmark, Name:="\cell"
         ' Applies border to cell.
         .Cells.Borders.Enable = True
         .Collapse
      End With

   Else
    
      MsgBox "Insertion point is not in a Word table"
        
   End If

End Sub
                

For more information about the DefaultBorderlineStyle property, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type defaultborderlinestyle in the Office Assistant or the Answer Wizard, and then click Search to view the topic.


REFERENCES

For additional information about getting help with Visual Basic for Applications, click the article numbers below to view the articles in the Microsoft Knowledge Base:

212623 WD2000: Macro Programming Resources


226118 OFF2000: Programming Resources for Visual Basic for Applications



Additional query words: vb vba vbe

Keywords: kbdtacode kbfaq kbhowto kbmacroexample kbprogramming KB209216