Function
EN
Version 2.10
@SetFieldFlags
Float
IDList
List
Misc
Note
NUMBER
System
Text
TimeDate
VStack
Syntax
@SetFieldFlags(VAR1;FN2);
Description
Sets the field flags FN2 for Notes in a variable.
If a variable is not explicitly assigned flags using @SetFieldFlags, the default values are assumed.
However, if flags have been assigned, those flags always apply.
Field flags are not overwritten or passed on by assignments.
FN2:
1 SIGN
2 SEAL
4 SUMMARY
16 SEALED
32 READ/WRITE-ACCESS
64 NAMES
256 PLACEHOLDER
512 PROTECTED
1024 READ-ACCESS
Practical examples of combinations:
Names fields : SUMMARY + NAMES
Readers fields : SUMMARY + READ-ACCESS + NAMES
Authors fields : SUMMARY + READ/WRITE-ACCESS + NAMES
Example: @SetFieldFlags(VAR1;FN2)
XYZ:="ABC";
@SetFieldFlags(XYZ;2+4+1);
XYZ is set to SUMMARY/SIGN/SEAL.
Note : This text was machine-translated and may contain inaccuracies.
