Borders

[This is preliminary documentation and subject to change.]

The Borders property specifies whether to display the table with visible cell borders.

Syntax

Borders = Value

Parameters

Value
A Boolean value that specifies whether the table cells have borders.

If Value is TRUE, then the table will include cell borders. This is equivalent to setting the BORDER attribute of the HTML <TABLE> tag equal to 1.

If Value is FALSE, the table will not include cell borders.

The default value is TRUE.

Example

The following example converts data into an HTML table without borders.
<%
Set myHTMLTable = Server.CreateObject("IISSample.HTMLTable")
myHTMLTable.Borders = False 
%>
 

Applies To

HTML Table Formatter Component

See Also

HeadingRow, AutoFormat