Skip to content

Latest commit

 

History

History
49 lines (29 loc) · 1.03 KB

Word.Borders.HasHorizontal.md

File metadata and controls

49 lines (29 loc) · 1.03 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Borders.HasHorizontal property (Word)
vbawd10.chm154927131
vbawd10.chm154927131
Word.Borders.HasHorizontal
5a5863c8-8f0d-67f9-6e1f-2a4dd6b4fbc6
06/08/2017
medium

Borders.HasHorizontal property (Word)

True if a horizontal border can be applied to the object. Read-only Boolean.

Syntax

expression. HasHorizontal

expression A variable that represents a 'Borders' object.

Remarks

Horizontal borders can be applied to ranges that contain cells in two or more rows of a table or ranges that contain two or more paragraphs.

Example

This example applies single-line horizontal borders, if the selection supports horizontal borders.

If Selection.Borders.HasHorizontal = True Then 
 Selection.Borders(wdBorderHorizontal).LineStyle = _ 
 wdLineStyleSingle 
End If

See also

Borders Collection Object

[!includeSupport and feedback]