| 
                                                             | Command Help set-field-output-status | 
| Command Name | Menu | Quick Key | Link to Command Table | 
| set-field-output-status | Command line only | - | 
Brief Description
Write an attribute field to a file type.
How to Use
The format for this command is:
set-field-output-status(FLDNAME ncode)
where FLDNAME is the attribute field name and ncode is a bitwise integer defining the filetype to write to. The integers and field types are:
| Integer | File Type | 
| 1 | Points | 
| 2 | Strings | 
| 4 | Holes | 
| 8 | Wireframes | 
| 16 | Results | 
ncode values are, for multiple file types, compound values. For example, to write an attribute field to NO file types you would use:
set-field-output-status(FLDNAME, 0)
As another example, to write an attribute field to points and results:
set-field-output-status(FLDNAME, 18)
The latter example will write to points and results file types because 2 + 16 = 18

 
                                                        