Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 946 Bytes

Word.Rows.First.md

File metadata and controls

45 lines (28 loc) · 946 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Rows.First property (Word)
vbawd10.chm155975690
vbawd10.chm155975690
Word.Rows.First
9e879fdf-bc21-cd19-37e9-bf44c06b3416
06/08/2017
medium

Rows.First property (Word)

Returns a Row object that represents the first item in the Rows collection.

Syntax

expression. First

expression Required. A variable that represents a Rows object.

Example

This example applies shading and a bottom border to the first row in the first table of the active document.

ActiveDocument.Tables(1).Borders.Enable = False 
With ActiveDocument.Tables(1).Rows.First 
 .Shading.Texture = wdTexture10Percent 
 .Borders(wdBorderBottom).LineStyle = wdLineStyleSingle 
End With

See also

Rows Collection Object

[!includeSupport and feedback]