AODL.Document.Content.Text.FormatedText.FormatedText C# (CSharp) Method

FormatedText() public method

Overloaded constructor.
public FormatedText ( IDocument document, TextStyle textstyle, string text ) : System
document IDocument The content object to which the formated text belongs to.
textstyle AODL.Document.Styles.TextStyle An existing TextStyle object.
text string The Displaytext.
return System
        public FormatedText(IDocument document, TextStyle textstyle, string text)
        {
          this.Document				    = document;
          this.NewXmlNode ( textstyle.StyleName ) ;
          this.InitStandards();

          this.Text					    = text;
          this.Style					= textstyle ;
        }

Same methods

FormatedText::FormatedText ( IDocument document, XmlNode node ) : System
FormatedText::FormatedText ( IDocument document, string name, string text ) : System