ValueTable.Insert

Syntax:

Insert(<Index>)

Parameters:

<Index> (required)

Type: Number.
Index of row being inserted.

Returned value:

Type: ValueTableRow.
Inserted row.

Description:

Inserts row to the values table position corresponding to specified index.

Availability:

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

Example:

NewRow = PriceTable.Insert(2);
NewRow.Article = CurArticle;
NewRow.Cost = ReceivedPrice;


    

1C:Enterprise Developer's Community