SpreadsheetDocument.GetArea
Syntax variant: By name
Syntax:
Parameters:
<AreaName> (required)
Area name or address in "R1C1:R2C2" format where a number that follows "R" denotes a row number, while a number after "C" denotes a column number by ":" symbol (colon) coordinates of the left-hand top and right-hand bottom area corner are divided. You can also transfer overlapping of two areas as a name that is written as "<Area Name 1> | <Area Name 2>".
Syntax variant: By address
Syntax:
Parameters:
<FirstRowNumber> (optional)
Number of the first table area row.
<FirstColumnNumber> (optional)
Number of the first table area column.
<LastRowNumber> (optional)
Number of the last table area row.
<LastColumnNumber> (optional)
Number of the last table area column.
Description of method variant:
Returned value:
Area as new spreadsheet document.
Description:
Availability:
Example:
Template = Documents.ExpenseBill.GetTemplate("ExpenseBill"); Header = Template.GetArea("Header"); |
See also: