Function EN Version 3.00

@SetVarFieldFlags

Float IDList List Misc Note NUMBER System Text TimeDate VStack

Syntax

@SetVarFieldFlags(NAME1;FN1);
@SetVarFieldFlags(NAME1;GROUP2;FN1);

Description

Sets the Notes field flags for the field specified in TEXT NAME1 to the value FN FN1.
If the variable belongs to a group, for example a document, the group name, for example the NOTEHANDLE of the document, must be specified as TEXT GROUP2.

FN1:
1   SIGN
2   SEAL
4   SUMMARY
16   SEALED
32   READ/WRITE-ACCESS
64   NAMES
256   PLACEHOLDER
512   PROTECTED
1024   READ-ACCESS

Example: @SetVarFieldFlags(NAME1;FN1)

XYZ:="";
@SetVarFieldFlags("XYZ";1+4);

Assigns the Notes flags SIGN and SUMMARY to the variable XYZ.

Example: @SetVarFieldFlags(NAME1;GROUP2;FN1)

XYZ[NH1]:="";
@SetVarFieldFlags("XYZ";"NH1";1+4);

Assigns the Notes flags SIGN and SUMMARY to the variable XYZ in the VARGROUP/NOTEHANDLE NH1.

Note : This text was machine-translated and may contain inaccuracies.