Hi
I am trying to create a Hyperlink in a table cell using the example provided in the samples.
But i get an xml error when i try to open the document created with the below code.
IWParagraph para = footerTbl[0, 0].AddParagraph(); //footertbl is a table
para.ApplyStyle(BuiltinStyle.Hyperlink);
IWField email = para.AppendField("ABC",
FieldType.FieldHyperlink);
Hyperlink emailLink = new Hyperlink(email as WField);
emailLink.Type = HyperlinkType.EMailLink;
emailLink.Uri = "mailto:
[email protected]";
Thanks
-Namita