Form.GetRichText

Form.GetRichText method

Get a Rich Text field’s value, including the formattinf information of every character.

public string GetRichText(string fieldName)
ParameterTypeDescription
fieldNameStringThe fully qualified field name of the Rich Text field.

Return Value

Return a string containing formatting information of the Rich Text field.

Examples

Form form = new Form("PdfForm.pdf");
Console.WriteLine(form.GetRichText("txtDescriptionRTF"));

See Also