Message-ID: <1765099411.10125.1711713692804.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_10124_1417109463.1711713692804" ------=_Part_10124_1417109463.1711713692804 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html TableCell.GetBorder(Border.Location)

TableCell.GetBorder(Border.Location)

Descrip= tion

=20

Returns a Border object that lets yo= u manipulate the border this table cell at a particular location.

=20
C#
=20
 public Border GetBorder(Location location)
=20
=20
vb.net
=20
Public Function GetBorder(ByVal location As Location) As Border
=20
=20

Parameters

= =20
location
A=20 Location o= bject that represents the location of the Border to return.=20

Returns

A=20 Border object that represents the border for this table cell a= t a particular location.=20

Remarks

=20

Allowed locations are Top, Left, Bottom, and Right. They refer to the bo= rder for those sides of the table cell.

=20

Word equivalent: Format menu > Borders and Shading... > Borders ta= b

=20

Examples

=20
C#
=20

          //--- Set the Left Border color to blue
          cell.GetBorder(Border.Location.Left).Color =3D Color.Blue;
        
=20
=20
vb.net
=20

          '--- Set the Left Border color to blue
          cell.GetBorder(Border.Location.Left).Color =3D Color.Blue
        
=20
------=_Part_10124_1417109463.1711713692804--