/// <summary>
        /// load rtf file
        /// </summary>
        public void Load(Stream stream)
        {
            _myEncoding = null;
            using (var reader = new RTFReader())
            {
                reader.LoadStream(stream);

                Load(reader);
                reader.Close();
            }
        }