rvrtferr.pas
来自「richview1.7 full.source」· PAS 代码 · 共 27 行
PAS
27 行
unit RVRTFErr;
interface
{----------------------------- error codes --------------------------}
type
TRVRTFErrorCode = (
rtf_ec_OK, // No error
rtf_ec_StackUnderflow, // Unmatched '}'
rtf_ec_StackOverflow, // Too many '{' -- memory exhausted
rtf_ec_UnmatchedBrace, // RTF ended during an open group.
rtf_ec_InvalidHex, // Invalid hex character found in data
rtf_ec_BadTable, // RTF table (sym or prop) invalid
rtf_ec_Assertion, // Assertion failure
rtf_ec_EndOfFile, // End of file reached while reading RTF
rtf_ec_FileOpenError, // Parser cannot open input file
rtf_ec_Exception, // Exception
rtf_ec_InvalidPicture, // Invalid picture in RTF
rtf_ec_Aborted
);
implementation
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?