AODL.Document.Content.Text.TextBuilder.BuildTextCollection C# (CSharp) Method

BuildTextCollection() public static method

Builds the text collection.
public static BuildTextCollection ( IDocument document, string text ) : AODL.Document.Content.Text.ITextCollection
document IDocument The document.
text string The text.
return AODL.Document.Content.Text.ITextCollection
		public static ITextCollection BuildTextCollection(IDocument document, string text)
		{
			string xmlStartTag				= "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>";
			ITextCollection txtCollection	= new ITextCollection();
			text							= WhiteSpaceHelper.GetWhiteSpaceXml(text);
			text							= text.Replace("\t", "<t/>");
			text							= text.Replace("\n", "<n/>");
			xmlStartTag						+= "<txt>"+text+"</txt>";

			XmlDocument xmlDoc				= new XmlDocument();
			xmlDoc.LoadXml(xmlStartTag);

			XmlNode nodeStart				= xmlDoc.DocumentElement;
			if (nodeStart != null)
				if (nodeStart.HasChildNodes)
				{
					foreach(XmlNode childNode in nodeStart.ChildNodes)
					{
						if (childNode.NodeType == XmlNodeType.Text)
							txtCollection.Add(new SimpleText(document, childNode.InnerText));
						else if (childNode.Name == "ws")
						{
							if (childNode.Attributes.Count == 1)
							{
								XmlNode nodeCnt = childNode.Attributes.GetNamedItem("id");
								if (nodeCnt != null)
									txtCollection.Add(new WhiteSpace(document, Convert.ToInt32(nodeCnt.InnerText)));
							}
						}
						else if (childNode.Name == "t")
						{
							txtCollection.Add(new TabStop(document));
						}
						else if (childNode.Name == "n")
						{
							txtCollection.Add(new LineBreak(document));
						}
					}
				}
				else
				{
					txtCollection.Add(new SimpleText(document, text));
				}
			return txtCollection;
		}
	}

Usage Example

Example #1
0
        /// <summary>
        /// Creates the paragraph collection.
        /// </summary>
        /// <param name="document">The document.</param>
        /// <param name="text">The text.</param>
        /// <param name="useStandardStyle">if set to <c>true</c> [use standard style].</param>
        /// <param name="paragraphSeperator">The paragraph seperator.</param>
        /// <returns></returns>
        public static ParagraphCollection CreateParagraphCollection(IDocument document, string text,
                                                                    bool useStandardStyle, string paragraphSeperator)
        {
            string xmlStartTag = "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>";
            ParagraphCollection pCollection = new ParagraphCollection();

            text         = text.Replace(paragraphSeperator, "<p/>");
            xmlStartTag += "<pg>" + text + "</pg>";

            XDocument xmlDoc = XDocument.Parse(xmlStartTag);

            XElement nodeStart = xmlDoc.Root;

            if (nodeStart != null)
            {
                if (nodeStart.HasElements)
                {
                    foreach (XNode childNode in nodeStart.Nodes())
                    {
                        if (childNode.NodeType == XmlNodeType.Text)
                        {
                            Paragraph paragraph;

                            if (useStandardStyle)
                            {
                                paragraph = CreateStandardTextParagraph(document);
                            }
                            else
                            {
                                paragraph = CreateParagraphWithCustomStyle(
                                    document,
                                    "P" +
                                    Convert.ToString(document.DocumentMetadata.ParagraphCount +
                                                     nodeStart.Nodes().Count() + 1));
                            }

                            paragraph.TextContent = TextBuilder.BuildTextCollection(document, ((XText)childNode).Value);
                            pCollection.Add(paragraph);
                        }
                        else
                        {
                            Paragraph paragraph;

                            if (useStandardStyle)
                            {
                                paragraph = CreateStandardTextParagraph(document);
                            }
                            else
                            {
                                paragraph = CreateParagraphWithCustomStyle(
                                    document,
                                    "P" +
                                    Convert.ToString(document.DocumentMetadata.ParagraphCount +
                                                     nodeStart.Nodes().Count() + 1));
                            }

                            pCollection.Add(paragraph);
                        }
                    }
                }
                else
                {
                    Paragraph paragraph;

                    if (useStandardStyle)
                    {
                        paragraph = CreateStandardTextParagraph(document);
                    }
                    else
                    {
                        paragraph = CreateParagraphWithCustomStyle(
                            document, "P" + Convert.ToString(document.DocumentMetadata.ParagraphCount + 1));
                    }

                    paragraph.TextContent = TextBuilder.BuildTextCollection(document, nodeStart.Value);
                    pCollection.Add(paragraph);
                }
            }
            return(pCollection);
        }