SpreadsheetDocumentRange.Outline

Syntax:

Outline(<LeftBorder>, <TopBorder>, <RightBorder>, <BottomBorder>)

Parameters:

<LeftBorder> (optional)

Type: Line.
Specifies the type of the left border. If this parameter is not set, the left border is not displayed.

<TopBorder> (optional)

Type: Line.
Specifies the type of the top border. If this parameter is not set, the top border is not displayed.

<RightBorder> (optional)

Type: Line.
Specifies the type of the right border. If this parameter is not set, the right border is not displayed.

<BottomBorder> (optional)

Type: Line.
Specifies the type of the bottom border. If this parameter is not set, the bottom border is not displayed.

Description:

Outlines the area with the border.

Availability:

Server, thick client, external connection, Mobile application (server).

Example:

Line = New Line(SpreadsheetDocumentCellLineType.Solid,2);
Area = DocTemplate.Area("Header");
Area.Outline(Line, Line, Line, Line);


    

1C:Enterprise Developer's Community