SpreadsheetDocumentRange.Outline
Syntax:
Parameters:
<LeftBorder> (optional)
Specifies the type of the left border. If this parameter is not set, the left border is not displayed.
<TopBorder> (optional)
Specifies the type of the top border. If this parameter is not set, the top border is not displayed.
<RightBorder> (optional)
Specifies the type of the right border. If this parameter is not set, the right border is not displayed.
<BottomBorder> (optional)
Specifies the type of the bottom border. If this parameter is not set, the bottom border is not displayed.
Description:
Availability:
Example:
Line = New Line(SpreadsheetDocumentCellLineType.Solid,2); Area = DocTemplate.Area("Header"); Area.Outline(Line, Line, Line, Line); |