Esempio n. 1
0
        /// <summary>
        ///     Loads Rationale from LinkedDocument
        /// </summary>
        /// <param name="element"></param>
        private string LoadDescription(IEAElement element)
        {
            var rtf = new RichTextBox {
                Rtf = element.GetLinkedDocument()
            };

            return(rtf.Text);
        }