Does the IsWidowOrphanControlEnabled property of text control work with the IsHtmlTagSupported ?
I have the following paragraph which the first line happens to be printed as the last row of a page even though I set the IsWidowOrphanControlEnabled = true. If it works correctly, this last line should be moved to the following page.
Does IsWidowOrphanControlEnabled works with text within tables?
It works fine when IsHtmlTagSupported = false but not when it's set to true.
Thanks
Jorge
//-------------------------
Text text = new Text("
laboratory analysis of the product are acceptable to the WWE. The Laboratory Analysis is being performed by the WWE Quality Assurance Department. The WWE will provide the Supplier the results of the Analysi once available. laboratory analysis of the product are acceptable to the WWE. The Laboratory Analysis is being performed by the WWE Quality Assurance Department. |
text.IsWidowOrphanControlEnabled = true;
text.IsHtmlTagSupported = true;
sec1.Paragraphs.Add(text);