How can I change attributes on Static Text Field in form?

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.

Making field invisuable is not provided by Aspose.Pdf.Kit in current release.

It will be put into next development plan and we hope it can be available in next release.

Mr. Zuo,

I am eager to know when the FormEditor.SetAppearance(FieldName, AppearanceFlag.HIDDEN) method/attribute will be available for use with my Forms (created in LiveCycle Designer).

Your assistance is appreciated.