I am wondering what Aspose API will allow me to change the visibility attribute on a static text field in my form.
I am [able to reset the text value] of a static text field as follows, but [what I really want to do is make the field Invisible - but can’t] When will this feature be supported? (I am using a form designed in Designer8).
Form pdfForm = new Form(formFilePath, tempReadOnlyFileName);
string[] fieldNames = pdfForm.FieldsNames;
foreach (string fieldName in fieldNames)
{
if (fieldName.Contains(SAVE_CHANGES_DESCRIPTION_FIELD) == true)
{
string newText = "This form is in read-only mode.";
pdfForm.**FillField** fieldName, newText);
}
}
Much thanks.