FormatType::ftype
Details
-
- This message is generated when the indicated value of the FormatType option is not among the types listed in the value of $PrintForms.
- Off[message] switches off the message; On[message] switches it on. For example: Off[FormatType::ftype].
Examples
Basic Examples (1)
The value of FormatType is not among the types listed in the value of $PrintForms:
With[{s = OpenWrite["TEST", FormatType -> cform]}, Write[s, 0];Close[s]]$PrintFormsThis shows a valid value for the FormatType option:
With[{s = OpenWrite["TEST", FormatType -> CForm]}, Write[s, 0];Close[s]]DeleteFile["TEST"]