summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/XFormField.idl
blob: 53555728ba40f7e3c2b4e9c6c7ccb1a7086e8390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __com_sun_star_text_XFormField_idl__
#define __com_sun_star_text_XFormField_idl__

#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/container/XNameContainer.idl>

module com {  module sun {  module star {  module text {

    /** @deprecated
     */
    interface XFormField : com::sun::star::uno::XInterface
    {
        string getFieldType();
        void setFieldType([in] string fieldType);
        com::sun::star::container::XNameContainer getParameters();
    };

}; }; }; };

#endif