Inside Property
Applies To
Border object.
Description
True if an inside border can be applied to the specified object. Read-only Boolean.
See Also
HasHorizontal property, HasVertical property, InsideLineStyle property, InsideLineWidth property.
Example
If the current selection supports inside borders (that is, if multiple paragraphs or cells are selected), this example applies a single inside border.
For Each aBorder In Selection.Borders
If aBorder.Inside = True Then aBorder.LineStyle = wdLineStyleSingle
Next aBorder