Assignment operator

Syntax:

<Target> = <Source>;

Parameters:

<Target>

Any writable variable of 1C:Enterprise script object property can be the <Target>.

<Source>

An expression whose value is assigned.

Description:

The assignment operator ("=" symbol) assigns the <Source> value to the <Target> variable.

Example:

= B;
Str1 = "777";
DocumentDate = Date('20091120');


     

1C:Enterprise Developer's Community